home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / cinematte_load.ifx.pre < prev    next >
Text File  |  2004-08-03  |  1KB  |  44 lines

  1. /*
  2.  * CineMatte.ifx.pre
  3.  * Written by Gerald Bonnstetter
  4.  *
  5.  * AutoFX script to run the CineMatte hook.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_CineMatte_'
  19.  
  20. lpath  = GETCLIP(base||'Path')
  21. lfile  = GETCLIP(base||'File')
  22. colors = GETCLIP(base||'Colors')
  23. output = GETCLIP(base||'Output')
  24.  
  25. IF colors = '' THEN colors = 0
  26. IF output = '' THEN output = 0
  27. IF lpath  = "" THEN lpath   = "Storage/CineMatte"
  28.  
  29. Gadget.1 = 'STRING  170  10 240 14 "CineMatte Options File:"' lfile
  30. Gadget.2 = 'FILEREQ 412  10  20 14 "CineMatte Options File:" 'lpath ' #?' lfile 'AT=1'
  31. Gadget.3 = 'CYCLE   170  26 170 14 "Screen Color:"' colors '"Blue/Green/Red/Cyan/Magenta/Yellow/Auto Detect/Detect Any Color"'
  32. Gadget.4 = 'CYCLE   170  42 170 14 "Output:"' output '"Matte & Keyed FG/Composite Only/Matte & Composite/Matte Only/Keyed FG Only"'
  33. Gadget.5 = 'END'
  34.  
  35. NewComplexRequest '"CineMatte"' Gadget 450 85
  36. IF rc ~= 0 THEN EXIT rc
  37.  
  38. CALL SETCLIP(base||'Path'  , result.2.path)
  39. CALL SETCLIP(base||'File'  , result.2.file)
  40. CALL SETCLIP(base||'Colors', result.3)
  41. CALL SETCLIP(base||'Output', result.4)
  42.  
  43. EXIT
  44.